﻿.banner-wide {
    width: 100%;
}

.side-bar {
    transform: translateY(-100px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--white);
    margin-right: 1rem;
}

    .side-bar .top {
        padding: 1.5rem;
    }

        .side-bar .top h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .side-bar .top .contact {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

            .side-bar .top .contact a {
                color: var(--white);
                text-decoration: none;
            }

            .side-bar .top .contact a:hover {
                text-decoration: underline;
            }

            .side-bar .top .cata-button {
                display: flex;
                background-color: var(--white);
                padding: 10px 20px;
                margin-top: 1rem;
                color: var(--black);
                text-decoration: none;
                border-radius: 3px;
                cursor: pointer;
                justify-content: center;
                transition: background-color .3s ease-in-out;
            }

                .side-bar .top .cata-button:hover {
                    background-color: var(--black);
                    color: var(--white);
                }

    .side-bar .bottom {
        padding: 1.5rem;
    }

        .side-bar .bottom h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .side-bar .bottom h4, .side-bar .bottom h3 {
            font-size: 1rem;
            margin-bottom: 1rem;
        }

.description {
    padding: 1.5rem;
}

    .description h2 {
        font-size: 1.5rem;
    }

    .description table {
        margin-bottom: 1rem;
    }

    .description .label {
        font-weight: bold;
    }

    .description iframe {
        width: 100%;
        height: 500px;
    }

    .description img {
        width: 100%;
        height: auto;
    }

.products {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-top: 1px solid var(--gray);
}

.products.grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding-top: 1rem;
    gap: 1rem;
}

    .products .item {
        display: flex;
        gap: 1rem;
        border-bottom: 1px solid var(--gray);
        padding: .5rem 1.5rem;
        align-items: center;
        color: var(--black);
        text-decoration: none;
    }

    .products.grid .item {
        background-color: var(--gray);
        padding: 1rem;
        border-radius: 3px;
    }

        .products .item h3 {
            font-size: 1.25rem;
            margin: 0;
        }

@media(max-width: 990px) {
    .side-bar {
        transform: translateY(0);
        margin-right: 0;
        margin-bottom: 1rem;
    }
}